Drop Python 3.9 support after EOL#622
Merged
laughingman7743 merged 1 commit intomasterfrom Nov 9, 2025
Merged
Conversation
Python 3.9 reached End-of-Life on October 31, 2025 and no longer receives security updates or bug fixes from the Python core team. Changes: - Update requires-python from ">=3.9" to ">=3.10" in pyproject.toml - Remove Python 3.9 classifier from pyproject.toml - Remove Python 3.9 from CI test matrix - Remove py39 from tox envlist - Update ruff target-version from py39 to py310 - Update mypy python_version from 3.9 to "3.10" - Update README.rst and docs/introduction.rst to reflect Python 3.10-3.13 support - Add strict=False to zip() calls (Python 3.10+ requirement) Closes #617 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This was referenced Nov 9, 2025
Closed
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Drop Python 3.9 support after reaching End-of-Life on October 31, 2025.
Changes
requires-pythonfrom">=3.9"to">=3.10"in pyproject.tomlProgramming Language :: Python :: 3.9classifier from pyproject.toml.github/workflows/test.yamlpy39from tox envlist and gh-actions mappingtarget-versionfrompy39topy310python_versionfrom3.9to"3.10"strict=Falsetozip()calls (Python 3.10+ lint requirement)Python 3.9 EOL Details
Test Plan
References
🤖 Generated with Claude Code